home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / HyperMail102.lha / HyperMail / libcgi / Makefile < prev    next >
Makefile  |  1995-06-18  |  459b  |  29 lines

  1. # CGI virdoc library makefile
  2.  
  3. # You shouldn't have to edit anything else.
  4.  
  5. INSTALL=install
  6. AUX_LIBS=
  7. RANLIB=ranlib
  8. RM= /bin/rm -f
  9.  
  10. .c.o:
  11.     $(CC) -c $(CFLAGS) $(AUX_CFLAGS) $(INF_INCS) $<
  12.  
  13. ALL = libcgi.a
  14.  
  15. .c.o:    cgi.h $<
  16.     $(CC) -c $(CFLAGS) $(AUX_CFLAGS) $(INF_INCS) $<
  17.  
  18. all: $(ALL)
  19.  
  20. libcgi.a: form_ent.o get_cgi_info.o main.o syn_mime.o syn_url.o mcode.o\
  21.     form_tags.o strops.o html.o
  22.     ar r $@ $?
  23.     ${RANLIB} $@
  24.  
  25. install: $(ALL)
  26.  
  27. clean:
  28.     -/bin/rm -f *.o *~ *.a
  29.